Proper connect_port
[juce-lv2.git] / juce / source / extras / browser plugins / demo / src / BrowserPluginCharacteristics.h
blob4cae8bfe3314c75b370cf3bc2033bbc08477f0da
1 /*
2 ==============================================================================
4 This file contains values that describe your plugin's behaviour.
6 ==============================================================================
7 */
10 //==============================================================================
11 #define JuceBrowserPlugin_Company "Raw Material Software Ltd"
12 #define JuceBrowserPlugin_Name "Juce Plugin Demo!"
13 #define JuceBrowserPlugin_Desc "Juce Browser Plugin Demo!"
15 //==============================================================================
16 /** This should be the same version number, in different forms..
18 #define JuceBrowserPlugin_Version "0.1"
19 #define JuceBrowserPlugin_WinVersion 0, 0, 1, 0
21 //==============================================================================
22 /** This is the mime-type of the plugin.
24 In your HTML, this is the 'type' parameter of the embed tag, e.g.
26 <embed id="plugin" type="application/npjucedemo-plugin" width=90% height=500>
28 These two macros must be the same string, but the "raw" one shouldn't have quotes around it.
30 #define JuceBrowserPlugin_MimeType_Raw application/npjucedemo-plugin
31 #define JuceBrowserPlugin_MimeType "application/npjucedemo-plugin"
33 //==============================================================================
34 /** Because plugins are associated with a file-type, this is the suffix of the file type the plugin
35 can open. If you don't need to use it, just use a made-up name here.
37 #define JuceBrowserPlugin_FileSuffix ".jucedemo"
39 /** If you're building an activeX version, you'll need to create a unique GUID for
40 your plugin. Use a tool like uuidgen.exe to create this.
42 #define JuceBrowserPlugin_ActiveXCLSID "F683B990-3ADF-11DE-BDFE-F9CB55D89593"